home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 December / PCWorld_2006-12_cd.bin / domacnost a kancelar / rainlendar / Rainlendar-Lite-2.0.exe / scripts / windows.lua < prev   
Text File  |  2006-08-27  |  2KB  |  83 lines

  1. -- 
  2. -- DO NOT EDIT THIS FILE. IT WILL BE OVERWRITTEN WHEN YOU UPGRADE RAINLENDAR!
  3. -- 
  4.  
  5. --
  6. -- Shows the given window if it is hidden.
  7. --
  8. -- Parameters: 
  9. --    windowName - Name of the window to be shown.
  10. -- Return:
  11. --    None
  12. --
  13. function Global_ShowWindow(windowName)
  14.         Rainlendar_ShowWindow(windowName)
  15. end
  16.  
  17. --
  18. -- Hides the given window if it is shown.
  19. --
  20. -- Parameters: 
  21. --    windowName - Name of the window to be hidden.
  22. -- Return:
  23. --    None
  24. --
  25. function Global_HideWindow(windowName)
  26.         Rainlendar_HideWindow(windowName)
  27. end
  28.  
  29. --
  30. -- Toggles the given window. If the window is visible
  31. -- it is hidden and vice versa.
  32. --
  33. -- Parameters: 
  34. --    windowName - Name of the window to be toggled.
  35. -- Return:
  36. --    None
  37. --
  38. function Global_ToggleWindow(windowName)
  39.     local visible = Rainlendar_IsWindowVisible(windowName)
  40.     if visible then
  41.                 Rainlendar_HideWindow(windowName)
  42.         else
  43.                 Rainlendar_ShowWindow(windowName)
  44.         end
  45. end
  46.  
  47. --
  48. -- Opens the about dialog.
  49. --
  50. -- Parameters: 
  51. --    None
  52. -- Return:
  53. --    None
  54. --
  55. function Global_ShowAboutDialog()
  56.         Rainlendar_OpenDialog("About")
  57. end
  58.  
  59. --
  60. -- Opens the todo dialog.
  61. --
  62. -- Parameters: 
  63. --    None
  64. -- Return:
  65. --    None
  66. --
  67. function Global_ShowTodoDialog()
  68.         Rainlendar_OpenDialog("Todo")
  69. end
  70.  
  71. --
  72. -- Opens the event dialog.
  73. --
  74. -- Parameters: 
  75. --    None
  76. -- Return:
  77. --    None
  78. --
  79. function Global_ShowEventDialog()
  80.         Rainlendar_OpenDialog("Event")
  81. end
  82.  
  83.